
body {
    font-family: Open Sans;
}
h1 {
    font-size: 40px;
}
h5 {
    font-size: 25px;
}
h6 {
    font-size: 20px;
}
span {
    font-size: 16px;
    line-height: 28px;
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 30px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
    span {
        font-size: 15px;
    }
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* HEADER */
.header {
    position: fixed;
    height: 100px;
    width: 100%;
    z-index: 100;
    box-shadow: 10px 0px 35px rgba(0, 0, 0, 0.4);
}
.header .logo {
    position: absolute;
    top: 30px;
    left: 200px;
    z-index: 101;
}
.header .logo img {
    height: 60px;
}
.header .main-menu {
    position: absolute;
    top: 60px;
    right: 360px;
}
.header .main-menu ul {
    display: flex;
    list-style-type: none;
}
.header .main-menu li {
    margin-right: 40px;
}
.header .main-menu li a {
    font-size: 20px;
    color: #0D3E61;
}
.header .main-menu li a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.header .social-items-list {
    width: 360px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    padding: 15px 20px;
    overflow: hidden;
    align-items: center;
}
.header .social-items-list .social-item img {
    height: 20px;
    vertical-align: unset !important;
}
.header .tag {
    font-size: 20px;
    line-height: 30px;
    color: #0D3E61;
    position: absolute;
    right: 50px;
    top: 10px;
}
.header .checkbox-toggle {
    display: none;
}
.header .hamburger {
    display: none;
}
.header .responsive-main-menu {
    display: none;
}

/* PAGE-SECTION */
.page-section {
    padding-top: 100px;
    padding-left: 0px;
    padding-right: 0px;
}

/* FOOTER */
.footer {
    position: relative;
    padding-top: 50px;
    padding-bottom: 80px;
    padding-left: 200px;
    padding-right: 100px;
    overflow: hidden;
}
.footer .logo img {
    width: 80%;
    height: auto;
}
.footer .main-menu ul {
    list-style-type: none;
    padding-left: 0px;
}
.footer .main-menu li a {
    font-size: 18px;
    line-height: 40px;
    color: #FFFFFF;
}
.footer .main-menu li a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.footer .contact-section {
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}
.footer .contact-section .address {
    margin-bottom: 30px;
}
.footer .contact-section .email {
    word-break: break-all;
}
.footer .row:nth-child(2) {
    margin-top: 40px;
}
.footer .content {
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
}
.footer .links {
    display: flex;
}
.footer .links .link-item:first-child {
    margin-left: 0px;
}
.footer .links .link-item {
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin-left: 30px;
}
.footer .links .link-item a {
    color: #FFFFFF;
}
.footer .links .link-item a:hover {
    opacity: 0.8;
    text-decoration: none;
}
.footer .right-rect {
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    transform: skew(-30deg);
    overflow: hidden;
}

@media screen and (max-width: 1500px) {
    .header .logo {
        left: 100px;
    }
    .footer {
        padding-left: 100px;
    }
}

@media screen and (max-width: 1400px) {
    .header .logo {
        top: 20px;
        left: 50px;
    }
    .header .main-menu, .header .social-items-list, .header .tag {
        display: none;
    }
    .header .checkbox-toggle {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 2;
        cursor: pointer;
        width: 60px;
        height: 60px;
        opacity: 0;
    }
    .header .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 40px;
        width: 40px;
        height: 40px;
    }
    .header .hamburger > div {
        position: absolute;
        top: 29px;
        width: 100%;
        height: 3px;
        background: #0D3E61;
        transition: all 0.4s ease;
    }
    .header .checkbox-toggle:checked + .hamburger > div {
        transform: rotate(135deg);
    }
    .header .hamburger > div:before {
        content: '';
        position: absolute;
        z-index: 1;
        top: -15px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0D3E61;
        transition: all 0.4s ease;
    }
    .header .hamburger > div:after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 15px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #0D3E61;
        transition: all 0.4s ease;
    }
    .header .checkbox-toggle:checked + .hamburger > div:before {
        top: 0;
        transform: rotate(90deg);
    }
    .header .checkbox-toggle:checked + .hamburger > div:after {
        top: 0;
        transform: rotate(90deg);
        opacity: 0;
    }
    .header .responsive-main-menu {
        position: fixed;
        top: 100px;
        padding: 50px;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
        text-align: center;
        transition: all 0.4s ease;
        visibility: hidden;
    }
    .header .checkbox-toggle:checked ~ .responsive-main-menu {
        opacity: 1;
        visibility: visible;
        z-index: 100;
    }
    .header .responsive-main-menu ul {
        list-style-type: none;
        padding: 0px;
    }
    .header .responsive-main-menu li {
        margin-bottom: 30px;
    }
    .header .responsive-main-menu li a {
        font-size: 20px;
        color: #0D3E61;
    }
    .header .responsive-main-menu li a:hover {
        opacity: 0.8;
        text-decoration: none;
    }
    .header .responsive-main-menu .responsive-social-items-list {
        width: calc(100% - 100px);
        position: fixed;
        bottom: 50px;
        height: 50px;
        padding: 15px 20px;
        text-align: center;
    }
    .header .responsive-main-menu .responsive-social-items-list .responsive-social-item img {
        height: 20px;
        vertical-align: unset !important;
    }
}

@media screen and (max-width: 1199px) {
    .footer .right-rect {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    /* HEADER */
    .header {
        height: 80px;
    }
    .header .logo {
        top: 20px;
        left: 50px;
    }
    .header .logo img {
        height: 40px;
    }
    .header .hamburger {
        width: 30px;
        height: 30px;
        top: 25px;
        right: 25px;
    }
    .header .checkbox-toggle {
        width: 30px;
        height: 30px;
        top: 25px;
        right: 25px;
    }
    .header .hamburger > div {
        top: 15px;
    }
    .header .hamburger > div:before {
        top: -10px;
    }
    .header .hamburger > div:after {
        top: 10px;
    }
    .header .responsive-main-menu {
        top: 70px;
    }

    /* PAGE SECTION */
    .page-section {
        padding-top: 80px;
    }

    /* FOOTER */
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer .logo img {
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .footer .logo {
        display: none;
    }
    .footer .row:nth-child(2) {
        text-align: center;
    }
    .footer .content {
        margin-bottom: 30px;
    }
    .footer .links {
        justify-content: center;
        align-items: center;
    }
}